Revision: tla--libawk-exp--1.3.1--patch-7
Archive: lord@emf.net--libawk-exp-2005
Creator: Thomas Lord <lord@emf.net>
Date: Fri Feb 11 15:35:06 PST 2005
Standard-date: 2005-02-11 23:35:06 GMT
Modified-files: libarch/cmd-grab.c
New-patches: lord@emf.net--libawk-exp-2005/tla--libawk-exp--1.3.1--patch-7
Summary: remove `trim_surrounding_ws' calls from "cmd-grab.c"
Keywords: 

Removed two `trim_surrounding_ws' calls from "cmd-grab.c" by
replacing the idiom:

	x = str_save_n (...);
        x = trim_surrounding_ws (x);

with

        x = str_save_trimming_n (...);


